.iframe-container {
        overflow: hidden;
        padding-top: 0%;
        position: relative;
    }
    .vimeo-facade {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    cursor: pointer;
    background: #000;
}
    .vimeo-facade img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
.vimeo-thumbnail {
    width: 100%;
    height: auto;
    object-fit: cover;
}
   .vimeo-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: #DE1B29;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.vimeo-play-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-35%, -50%);
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}